home *** CD-ROM | disk | FTP | other *** search
Text File | 1990-06-25 | 1.2 KB | 64 lines | [TEXT/pdos] |
- {**********************************************************************
- {*
- {* Darts uWindow -- Version 3.0 (interface)
- {*
- {* Copyright (c)
- {* Apple Computer, Inc. 1986-1989
- {* All Rights Reserved.
- {*
- {* Developer Technical Support Apple II Sample Code
- {*
- {* This file contains the interface to the code which implements
- {* windows in the program.
- {*
- {**********************************************************************}
-
- UNIT uWindow;
-
- INTERFACE
-
- USES
-
- types,
- locator,
- quickdraw,
- fonts,
- MEMORY,
- intMath,
- events,
- controls,
- windows,
- dialogs,
- menus,
- DESK,
- STDFILE,
- GSOS,
- resources,
- misctool,
- lists,
-
-
- uGlobals,
- uUtils;
-
- procedure setUpWindows;
- procedure invalScore (PlayerNum : integer);
- procedure clearList (PlayerNum : integer);
- procedure addToList (PlayerNum : integer; Amount : integer);
- procedure removeSelected (PlayerNum : integer);
- procedure fixButtonTitle (PlayerNum : integer; Amount : integer);
- procedure drawThisWindow;
- procedure startupRobinGame;
- procedure startupCrickettGame;
-
-
-
- IMPLEMENTATION
-
- {$I uWindow.inc.p }
-
-
-
-
- END.
-